home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr10 / snr503.zip / SINGLESP.S < prev    next >
Text File  |  1993-05-30  |  902b  |  19 lines

  1. \  SINGLESP.S
  2. \  This table will convert a double-spaced ASCII document into a
  3. \  single-spaced one. It will also remove more than three blank lines
  4. \  in a row.
  5.  
  6. \  NOTE: Even though we are using \0d\0a in the equations below, if your
  7. \  data file uses a different line-ending code, you can change this table
  8. \  to use that code instead of the carriage return - line feed (CRLF).
  9.  
  10. \0d\0a\0d\0a=\0d\0a*ic\0a\0d     \ 2 CRLFs in a row will be replaced
  11.                                  \ by 1 CRLF, then ignore consecutive
  12.                                  \ carriage return OR line feed characters
  13.  
  14. \0d\0a\0d\0a\0d\0a=\0d\0a\0d\0a*ic\0a\0d  \ 3 CRLFs in a row will be replaced
  15.                                           \ by 2 CRLFs, then ignore
  16.                                           \ consecutive carriage return
  17.                                           \ OR line feed characters
  18.  
  19.